home *** CD-ROM | disk | FTP | other *** search
/ Faces of Papua New Guinea / Faces of Papua New Guinea by Wm. C. Clarke, Ph.D. (Wayzata Technology)(3211)(1995).bin / mmdmovie / playall3 / 00067_Script_67 < prev   
Text File  |  1995-01-31  |  425b  |  30 lines

  1. on keyDown
  2.   if the key = "m" then
  3.     toggleMenu
  4.   end if
  5. end
  6.  
  7. on toggleMenu  
  8.   global gMenuState
  9.   if gMenuState = 1 then
  10.     put 0 into gMenuState
  11.     installMenu 0
  12.   else
  13.     put 1 into gMenuState
  14.     installMenu 66
  15.   end if
  16. end
  17.  
  18. on startMovie
  19.   global gMenuState
  20.   if gMenuState = 1 then
  21.     installMenu 66
  22.   else
  23.     installMenu 0
  24.   end if
  25.   
  26. end
  27.  
  28. on exitMovie
  29.   sound stop 2
  30. end exitMovie